home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
351-375
/
355
/
rexxhostlib
/
makefile
< prev
next >
Wrap
Makefile
|
1995-03-14
|
732b
|
29 lines
################################################################
#
# MakeFile to build rexxhost.library & FancyDemo.
#
# Aztec 'C' 5.0 is required to compile the library,
# FancyDemo will probably compile with any other
# compiler.
#
################################################################
CFLAGS = -so -wu -hi RexxHost.SYM
OBJS = LibStartup.o LibMain.o RexxHostLib.o StringAsm.o
all: RexxHost.SYM rexxhost.library FancyDemo
rexxhost.library: $(OBJS)
LN -o rexxhost.library $(OBJS) -Lc
Protect rexxhost.library -e
Copy rexxhost.library LIBS: CLONE
FancyDemo: FancyDemo.o
LN FancyDemo.o -Lc
FancyDemo.o: FancyDemo.c
CC FancyDemo.c
RexxHost.SYM: PreInclude.c
CC -ho RexxHost.SYM PreInclude.c